home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Magazin/MacEasy 42
/
Mac Magazin and MacEasy Magazine CD - Issue 42.iso
/
Software
/
Mobiles Büro
/
Newton
/
Accordian 1.0b
/
ADF Folder
/
PocketMoney.adf
< prev
next >
Wrap
Text File
|
1997-10-15
|
2KB
|
61 lines
// Definition of the PocketMoney program
// 10/15/97
//
application "PocketMoney:VtHick" called "PocketMoney"
// with options { "nofolders" }
soup "PocketMoney:Accounts:VtHick" called "PocketMoney" of "PocketMoney:VtHick"
overview "PocketMoney" called "PocketMoney" of "PocketMoney:Accounts:VtHick" queries "date" contains
{
column "Date" width 60 is date
column "Account" width 80 is account
column "Category" width 80 is category
column "Payee" width 80 is payee
column "Amount" width 80 is amount
}
class "PocketMoney:VtHick.Withdraw" called "Withdrawal" of "PocketMoney:Accounts:VtHick" contains
{
label:string called "Label"
date: datetime called "Date"
account: string called "Account"
category: string called "Category"
payee: string called "Payee"
chknum: string called "ID#"
amount:real called "Amount"
xrate:real called "Xrate"
cleared:boolean called "Cleared"
description:string called "Memo"
}
class "PocketMoney:VtHick.Deposit" called "Deposit" of "PocketMoney:Accounts:VtHick" contains
{
label:string called "Label"
date: datetime called "Date"
account: string called "Account"
category: string called "Category"
payee: string called "Payer"
chknum: string called "ID#"
amount:real called "Amount"
xrate:real called "Xrate"
cleared:boolean called "Cleared"
description:string called "Memo"
}
class "PocketMoney:VtHick.Transfer" called "Transfer" of "PocketMoney:Accounts:VtHick" contains
{
label:string called "Label"
date: datetime called "Date"
account: string called "Account"
category: string called "Category"
payee: string called "Payee"
chknum: string called "ID#"
amount:real called "Amount"
xrate:real called "Xrate"
cleared:boolean called "Cleared"
description:string called "Memo"
}